home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1995 April / Internet Tools.iso / infoserv / www / cern / doc / www-talk.archive.Z / www-talk.archive / text0313.txt < prev    next >
Encoding:
Text File  |  1992-11-30  |  1.2 KB  |  28 lines

  1. Here's an excerpt from the NeXT Nugget news digest, talking about
  2. aspects of NeXTStep 3.0 which developers ought to take into account.
  3. (I don't think WonderFormat is a MIME type ;-)
  4.  
  5.  
  6.  
  7. - Filter services
  8. A Filter service is a new 3.0 type of Service which has no menu item
  9. but supports the ability to convert a piece of data from one type to
  10. another.  Every application can take advantage of filter services
  11. when opening files (via +typesFilterableTo: if it can open a standard
  12. type, like RTF) and when importing data via copy/paste or dragging
  13. (via +imagePasteboardTypes).
  14.  
  15. Other applications can provide filter services:  for example, if you
  16. have some code which converts your document format [the WonderFormat]
  17. to RTFD, then you should provide this functionality as a filter
  18. service.  Another application which understands RTFD but not
  19. WonderFormat can still import WonderFormat documents and the filter
  20. service will do the work of the conversion.  The other advantage of
  21. providing a filter to ascii is that your documents then become
  22. indexable by Digital Librarian.  See the 3.0 Appkit Release Notes and
  23. the Pasteboard spec sheet for more information on:
  24. +typesFilterableTo:, +newByFilteringFile:, +newByFilteringData:,
  25. +newByFilteringTypesInPasteboard:.
  26.  
  27.  
  28.